home *** CD-ROM | disk | FTP | other *** search
- #ifndef _INCLUDE_MATH_H
- #define _INCLUDE_MATH_H
-
- /*
- ** $VER: math.h 10.1 (19.7.95)
- ** Includes Release 40.15
- **
- ** '(C) Copyright 1995/96 Haage & Partner Computer GmbH'
- ** All Rights Reserved
- */
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- char *inttostr(int, char[], short);
- char *uinttostr(unsigned, char[], short);
- char *llongtostr(long long, char[], short);
- char *ullongtostr(unsigned long long, char[], short);
- char *floattostr(float, char[], short);
- char *doubletostr(double, char[], short);
-
- double sin(double);
- double cos(double);
- double tan(double);
- double asin(double);
- double acos(double);
- double atan(double);
- double atan2(double, double);
- double sinh(double);
- double cosh(double);
- double tanh(double);
- double exp(double);
- double log(double);
- double log10(double);
- double pow(double,double);
- double sqrt(double);
- double ceil(double);
- double floor(double);
- double fabs(double);
- double ldexp(double,int);
- double frexp(double,int*);
- double modf(double,double*);
- double fmod(double,double);
- double pwr10(int);
- int expo10(double);
- float fpwr10(int);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-
-